home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / prog / asm_0_m.arj / L4.DOC < prev    next >
Text File  |  1987-05-13  |  3KB  |  88 lines

  1.  
  2. Command    LIST
  3. ----------------
  4.  
  5.  Purpose:  To display the contents of an ASCII file, line by
  6.        line, with operator positioning commands.
  7.  
  8.  Format:   LIST    [d:][path]filename[.ext]
  9.  
  10.  Remarks:  An ASCII file of any    size may be listed.
  11.  
  12.     On the COMMAND line, enter a letter or control key:-
  13.  
  14.     Letter(s)    Control key    Function
  15.     -----------    ------------    ------------------------
  16.             Enter        continue to next page
  17.     Q, X        ESCape        terminate and exit to DOS
  18.     T        HOME        restart    from first block (top)
  19.     B        END        skip to    end of file (bottom)
  20.     D         PgDn        scroll down one    page
  21.     U        PgUp        scroll up one page
  22.     H or ?        F1        list commands (HELP)
  23.     L        left arrow    scroll left 20 columns
  24.     R        right arrow    scroll right 20    columns
  25.     P        up arrow    up one (previous) line
  26.     N        down arrow    down one (next)    line
  27.  
  28.     /text                find 'text'
  29.     A        F3        find next occurance of 'text'
  30.  
  31.             ctl-HOME    restart from CURRENT block
  32.             ctl-PgUp    restart from first block (TOP)
  33.             ctl-PgDn    skip to end of file (BOTTOM)
  34.             ctl-left-arrow    reset scroll to column 1
  35.  
  36.             F1        Help
  37.             F3        Find next
  38.             F10        Exit
  39.  
  40.  Restrictions:
  41.     All positioning    is relative to the current block in
  42.     storage. The size of the block depends on the amount of
  43.     memory available, up to    64K.
  44.  
  45.     The maximum record length currently allowed is 255.
  46.  
  47.     Logical    records    (ending    in LF and/or CR) are placed
  48.     into the DOS screen buffer - mono or color display.
  49.  
  50.     PC-DOS Version 2.0 or later is required.
  51.  
  52.     ANSI.SYS is NOT required.
  53.  
  54.  Scanning for text:
  55.     To scan for a character string, type a slash (/)
  56.     followed by one or more (up to 32) characters. The
  57.     scan text, but not the slash, is displayed on the
  58.     command line. Only the current block is scanned.
  59.  
  60.     If the text is found, the line containing it is displayed
  61.     as a blinking line.
  62.  
  63.     If the text is NOT found, an error message is displayed
  64.     and the display remains unchanged. To scan the next block,
  65.     "page" into it with PgDn or Down, and use F3 to re-scan.
  66.  
  67.  Screen attributes:
  68.     There are three classes of attributes used. One for
  69.     normal display lines - lines 2 to 24, another for
  70.     special lines - lines 1 and 25, and a third for the
  71.     background color.
  72.  
  73.     These attributes may be changed by using DEBUG:
  74.  
  75.      at offset 11C = 09    ;special lines, hi-lighted or lt.blue
  76.      at offset 11D = 02    ;normal lines, green
  77.      at offset 11E = 00    ;background, black
  78.  
  79.     If these values don't match, you have a different version.
  80.     ----------------------------------------------------------
  81.  
  82.     Written    by Vernon Buerg, April,    1984, for the IBM PC
  83.     using DOS 2.0 and is supplied for public domain    use.
  84.     Not for sale or hire.
  85.  
  86.     Version    1.4, April 27, 1984.
  87.  
  88.